home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
WV Adobe ImageReady 3.0.xpl
< prev
next >
Wrap
Text File
|
2002-04-06
|
1KB
|
49 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="5"
"COUNT"="1"
"UIPATH"="Program Options\Other Programs\Adobe\ImageReady 3.0\"
"NAME"="Recent files"
"VERSION"="1.00"
"LANGUAGE"="VBScript"
"TEXT 1"="Clear recent files list"
"DESCRIPTION 1"="If you don't want other people to see the files you have open, click on the button."
"DESCRIPTION 2"="For more informations about ImageReady 3.0, go to http://www.adobe.com."
"AUTHOR"="FORMATMAN"
"CONTACTURL"="http://formatland.free.fr/"
"COPYRIGHT"="Copyright ⌐ Formatman"
"COMMENT 1"="For more informations, go to http://www.xsetup.net"
"COMMENT 2"="Created by VORMELKER Werner"
"COMMENT 3"="http://formatland.free.fr/"
"COMMENT 4"="formatman@wanadoo.fr"
sP="HKCU\Software\Adobe\ImageReady 3.0\Preferences\RecentFiles\"
Sub Plugin_Initialize
If RegPathExists(sP)=false then
Disable()
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
if ElementIndex=1 then
for l=1 to 30
s="File" & l
v=RegReadValue(sP & s)
If IsEmpty(v)=false then
Call RegDeleteValue(sP & S)
end if
Next
Call MsgInformation("List cleared !")
end if
End Sub
Sub Plugin_Terminate
End Sub